home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pp / pp-6.0 / h / expand.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-18  |  376 b   |  26 lines

  1. /* expand.h: macro expansion structure */
  2.  
  3. /*
  4.  * @(#) $Header: /xtel/pp/pp-beta/h/RCS/expand.h,v 6.0 1991/12/18 20:42:44 jpo Rel $
  5.  *
  6.  * $Log: expand.h,v $
  7.  * Revision 6.0  1991/12/18  20:42:44  jpo
  8.  * Release 6.0
  9.  *
  10.  *
  11.  */
  12.  
  13.  
  14.  
  15. #ifndef _H_EXPAND
  16. #define _H_EXPAND
  17.  
  18. typedef struct Expand {
  19.     char    *macro;
  20.     char    *expansion;
  21. } Expand;
  22.  
  23. char    *expand ();
  24. char    *expand_dyn ();
  25. #endif
  26.